home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aventail_asap.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  79 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #  This script is released under the GNU GPL v2
  4. #
  5. if(description)
  6. {
  7.  script_id(17583);
  8.  script_version("$Revision: 1.1 $");
  9.  
  10.  name["english"] = "Aventail ASAP detection";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host seems to be an Aventail SSL VPN appliance, 
  16. connections are allowed to the web console management.
  17.  
  18. Letting attackers know that you are using this software will help 
  19. them to focus their attack or will make them change their strategy.
  20. In addition to this, an attacker may attempt to set up a brute force attack
  21. to log into the remote interface.
  22.  
  23. Solution : Filter incoming traffic to this port
  24. Risk factor : None";
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Aventail ASAP Management Console management";
  29.  
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.   
  34.  script_copyright(english:"This script is Copyright (C) 2005 David Maciejak");
  35.  
  36.  family["english"] = "Misc.";
  37.  family["francais"] = "Divers";
  38.  script_family(english:family["english"], francais:family["francais"]);
  39.  script_dependencie("http_version.nasl");
  40.  
  41.  script_require_ports(8443);
  42.  exit(0);
  43. }
  44.  
  45. function https_get(port, request)
  46. {
  47.     if(get_port_state(port))
  48.     {
  49.  
  50.          soc = open_sock_tcp(port, transport:ENCAPS_SSLv23);
  51.          if(soc)
  52.          {
  53.             send(socket:soc, data:string(request,"\r\n"));
  54.             result = http_recv(socket:soc);
  55.             close(soc);
  56.             return(result);
  57.          }
  58.     }
  59. }
  60.  
  61. #
  62. # The script code starts here
  63. #
  64. include("http_func.inc");
  65. include("http_keepalive.inc");
  66.  
  67. port = 8443;
  68. if(get_port_state(port))
  69. {
  70.  req = http_get(item:"/console/login.do", port:port);
  71.  rep = https_get(request:req, port:port);
  72.  if( rep == NULL ) exit(0);
  73.  #<title>ASAP Management Console Login</title>
  74.  if ("<title>ASAP Management Console Login</title>" >< rep)
  75.  {
  76.    security_note(port);
  77.  }
  78. }
  79.